home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / Mic-1 v1.0 / Project and Source / Source / mic_dump.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-10  |  505 b   |  23 lines  |  [TEXT/CWIE]

  1. #ifndef _MIC_DUMP_
  2. #define _MIC_DUMP_
  3.  
  4. #include "mic_main.h"
  5.  
  6. extern class Mic_1_Class;
  7.  
  8. // constants for Dump()
  9. extern const short kFromDataPath;
  10. extern const short kFromControl;
  11. extern const short kFromRAM;
  12. extern const short kFromEverything;
  13.  
  14. extern const short kToDeathFile;
  15. extern const short kToIndexedFile;
  16. extern const short kToFinalFile;
  17. extern const short kToScreen;
  18.  
  19. // prototypes
  20. void Dump (Mic_1_Class& Mic, const short whereFrom, const short whereTo);
  21. void doDump (Mic_1_Class& Mic);
  22.  
  23. #endif